type of css

inline css

use in single line and element.

for example: (p style="color:{name of color}; font-style:{italic, oblique,normal};background:{name of color}; font-weight:{number in pixel}; font-size:{number in pixel};text-decoration:{line-through,underkine,overline,none};text-align:{left,right,center}; padding:{add blank spaces around content write in pixel}; ")


EMBEDDED STYLESHEET OR INTERNAL CSS

write in head and apply on single document and page


EXTERNAL STYLESHEET

When you want to make to chanes on multiple page by using css (write propery of css on an other page with .css extension)
example: link rel="stylesheet" href="2 programe(external stylesheet ).css">
style.css p{ style="color:[name of color]; font-style:[italic, oblique,normal];background:[name of color]; font-weight:[number in pixel]; font-size:[number in pixel];text-decoration:[line-through,underkine,overline,none];text-align:[left,right,center]; padding:[add blank spaces around content write in pixel];}